*{
    box-sizing:border-box;
}

.container{
    max-width:1400px;
    margin:60px auto;
    padding:20px;
}

.page-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:30px;
}

.search-box{
    width:350px;
    padding:12px 18px;
    border-radius:8px;
    border:1px solid #ddd;
    margin-bottom:25px;
    font-size:15px;
}

table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

th{
    background:#003B73;
    color:#fff;
    padding:15px;
    text-align:left;
}

td{
    padding:15px;
    border-bottom:1px solid #eee;
    vertical-align:middle;
}

tr:hover{
    background:#f8f9fa;
}

.btn{

    display:inline-block;
    padding:8px 15px;
    border-radius:6px;
    text-decoration:none;
    cursor:pointer;
    border:none;
    font-size:14px;
}

.btn-view{
    background:#0077ff;
    color:#fff;
}

.btn-resume{
    background:#0b8b43;
    color:#fff;
}

.badge{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    color:#fff;
    font-size:13px;
}

.new{
    background:#007bff;
}

.shortlisted{
    background:#28a745;
}

.interview{
    background:#ffc107;
    color:#000;
}

.rejected{
    background:#dc3545;
}

.hired{
    background:#198754;
}

.modal{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);

    display:none;
    justify-content:center;
    align-items:center;

    z-index:9999;

}

.modal-box{

    width:700px;
    max-width:95%;
    background:#fff;
    border-radius:12px;
    padding:30px;

}

.modal-box h2{
    margin-bottom:20px;
}

.modal-box p{
    margin-bottom:12px;
}

.close-btn{

    margin-top:20px;
    background:#003B73;
    color:#fff;
}
.dashboard-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:40px;
}

.dashboard-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.dashboard-card:hover{
    transform:translateY(-5px);
}

.dashboard-card h2{
    margin:0;
    font-size:36px;
    color:#003B73;
}

.dashboard-card p{
    margin-top:10px;
    color:#666;
    font-size:16px;
}

.card-total{
    border-top:5px solid #003B73;
}

.card-new{
    border-top:5px solid #007bff;
}

.card-shortlisted{
    border-top:5px solid #28a745;
}

.card-interview{
    border-top:5px solid #ffc107;
}

.card-rejected{
    border-top:5px solid #dc3545;
}

.card-hired{
    border-top:5px solid #198754;
}
.toolbar{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin:25px 0;
    flex-wrap:wrap;
}

.toolbar input{
    flex:1;
    min-width:300px;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.toolbar select{
    width:220px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
}
.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin:30px 0;
}

.pagination button{
    padding:10px 18px;
    border:none;
    background:#003B73;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}

.pagination button:disabled{
    background:#ccc;
    cursor:not-allowed;
}

#pageInfo{
    font-weight:600;
}

@media (max-width:900px) {

table{
display:block;
overflow:auto;
}

}
